From fb6f9e10dade45dd95ec5cc8e4283e61bb824188 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 3 May 2017 16:11:17 +0100 Subject: [PATCH] build: Use appropriate linker flag for the builder test The `-export-dynamic` flag is a libtool-specific flag; since we're not using libtool with Meson, we should instruct the C compiler to use the appropriate linker flag instead. --- testsuite/gtk/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/gtk/meson.build b/testsuite/gtk/meson.build index e30689bf9c..5623613475 100644 --- a/testsuite/gtk/meson.build +++ b/testsuite/gtk/meson.build @@ -3,7 +3,7 @@ tests = [ ['accessible'], ['adjustment'], ['bitmask', ['../../gtk/gtkallocatedbitmask.c'], ['-DGTK_COMPILATION', '-UG_ENABLE_DEBUG']], - ['builder', [], [], ['-export-dynamic']], + ['builder', [], [], ['-Wl,--export-dynamic']], ['builderparser'], ['cellarea'], ['check-icon-names'], -- 2.30.2